home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 9
/
FM Towns Free Software Collection 9.iso
/
taropyon
/
silib
/
inc
/
scn
/
msk.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS (detected)
UTF-8
Wrap
C/C++ Source or Header
|
1994-11-16
|
318 b
|
17 lines
#ifndef _SCN_MSK_H
#define _SCN_MSK_H
#ifndef _SITYPES_H
# include <sitypes.h>
#endif
typedef struct /* ビットマップマスク構造体 */
{
int flag; /* マスク有効/無効フラグ */
int xb, yb; /* 横/縦バイト数 */
size_t mskBufSiz; /* マスクバッファサイズ */
char *mskBuf;
} MSK_T;
#endif